crypto/tls.clientHandshakeStateTLS13.hello (field)

24 uses

	crypto/tls (current package)
		handshake_client.go#L360: 			hello:        hello,
		handshake_client_tls13.go#L27: 	hello        *clientHelloMsg
		handshake_client_tls13.go#L58: 	if hs.keyShareKeys == nil || hs.keyShareKeys.ecdhe == nil || len(hs.hello.keyShares) == 0 {
		handshake_client_tls13.go#L68: 	if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L101: 			hs.hello = hs.echContext.innerHello
		handshake_client_tls13.go#L111: 			if hs.hello.serverName == "" && hs.serverHello.serverNameAck {
		handshake_client_tls13.go#L194: 	if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
		handshake_client_tls13.go#L204: 	selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
		handshake_client_tls13.go#L250: 	hello := hs.hello
		handshake_client_tls13.go#L317: 		if slices.ContainsFunc(hs.hello.keyShares, func(ks keyShare) bool {
		handshake_client_tls13.go#L378: 		hs.hello.keyShares = hello.keyShares
		handshake_client_tls13.go#L384: 		if err := computeAndUpdateOuterECHExtension(hs.hello, hs.echContext.innerHello, hs.echContext, false); err != nil {
		handshake_client_tls13.go#L388: 		hs.hello = hello
		handshake_client_tls13.go#L391: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L438: 	if !slices.ContainsFunc(hs.hello.keyShares, func(ks keyShare) bool {
		handshake_client_tls13.go#L449: 	if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
		handshake_client_tls13.go#L454: 	if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
		handshake_client_tls13.go#L530: 	err = c.config.writeKeyLog(keyLogLabelClientHandshake, hs.hello.random, clientSecret)
		handshake_client_tls13.go#L535: 	err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.hello.random, serverSecret)
		handshake_client_tls13.go#L560: 	if err := checkALPN(hs.hello.alpnProtocols, encryptedExtensions.alpnProtocol, c.quic != nil); err != nil {
		handshake_client_tls13.go#L584: 	if !hs.hello.earlyData && encryptedExtensions.earlyData {
		handshake_client_tls13.go#L588: 	if hs.hello.earlyData && !encryptedExtensions.earlyData {
		handshake_client_tls13.go#L740: 	err = c.config.writeKeyLog(keyLogLabelClientTraffic, hs.hello.random, hs.trafficSecret)
		handshake_client_tls13.go#L745: 	err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.hello.random, serverSecret)